diff options
Diffstat (limited to 'frontend/src/pages/raw/[hash].js')
| -rw-r--r-- | frontend/src/pages/raw/[hash].js | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/frontend/src/pages/raw/[hash].js b/frontend/src/pages/raw/[hash].js index 3374eea..9edde36 100644 --- a/frontend/src/pages/raw/[hash].js +++ b/frontend/src/pages/raw/[hash].js @@ -11,7 +11,6 @@ const RawText = styled.pre` export async function getServerSideProps(ctx) { const data = await resolvePaste(ctx.params.hash) - console.log(data) return { props: { ...data } } } |